home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / PowerPC / Dev / PPCRelease / Examples / R.Mainz / msg9 / smakefile < prev   
Encoding:
Makefile  |  1998-06-03  |  1.1 KB  |  45 lines

  1.  
  2. #*****************************************************************************
  3. #*
  4. #*  $VER: smakefile 46.1 (3.6.98)
  5. #*  Msg9 46.1
  6. #*
  7. #*  SAS/C PPC Msg9 makefile
  8. #*
  9. #*  Written 1997/1998 by Roland Mainz (gisburn@w-specht.rhein-ruhr.de)
  10. #*
  11. #*****************************************************************************
  12.  
  13. ##############################################################################
  14. # Build all
  15.  
  16. all: Msg9 Msg9PPC.elf
  17.  
  18. ##############################################################################
  19.  
  20. OBJS    = Msg9.o
  21. PPCOBJS = Msg9PPC.o
  22.  
  23. ##############################################################################
  24.  
  25. Msg9: ${OBJS}
  26.    sc link to Msg9 $(OBJS) ppcexamples:time.o
  27.  
  28. Msg9PPC.elf: ${PPCOBJS}
  29.    slinkppc.script Msg9PPC.elf ${PPCOBJS}
  30.  
  31. ##############################################################################
  32.  
  33. Msg9PPC.o: Msg9PPC.c Msg9.h
  34.     scppc Msg9PPC.c
  35.  
  36. ##############################################################################
  37.  
  38. Msg9.o: Msg9.c Msg9.h
  39.     sc Msg9.c
  40.  
  41. ##############################################################################
  42.  
  43.  
  44.  
  45.